
How do I pass a cancellation token to a call chain?
I'm trying to figure out how to propagate a cancellation token through a series of function calls. I want to ensure that if the token is cancelled at any point, the entire call chain can be gracefully terminated.
